home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / mus / play / multiplsr.lha / bouncekludge.asm < prev    next >
Assembly Source File  |  1992-09-14  |  2KB  |  69 lines

  1. * MultiPlayer
  2. * Copyright (C) 1992 Bryan Ford
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. *
  18. * I (the author of MultiPlayer) can be contacted on the Internet at
  19. * "bryan.ford@m.cc.utah.edu".  See "Player.doc" for other addresses.
  20. *
  21. * $Id: bouncekludge.asm,v 3.1 92/05/25 07:52:08 BAF Exp $
  22. *
  23.  
  24.  
  25. abounce macro   ; label
  26.         xdef    \1
  27.         xref    r_\1
  28. \1      jmp     r_\1
  29.         endm
  30.  
  31. cbounce macro   ; label
  32.         xdef    @\1
  33.         xref    @r_\1
  34. @\1     jmp     @r_\1
  35.         endm
  36.  
  37.         code    text
  38.  
  39. * window.c
  40.         cbounce windowsettingsupdate
  41.         cbounce windowopen
  42.  
  43. * progwin.c
  44.         cbounce progwinlistdetach
  45.         cbounce progwinlistattach
  46.         cbounce progwinselmod
  47.         cbounce progwinopenclose
  48.  
  49. * prefswin.c
  50.         cbounce prefswinupdate
  51.         cbounce prefswinopenclose
  52.  
  53. * settingswin.c
  54.         cbounce settingswinupdate
  55.         cbounce settingswinopenclose
  56.  
  57. * infowin.c
  58.         cbounce infowinattach
  59.         cbounce infowindetach
  60.         cbounce infowinopenclose
  61.  
  62. * flashywin.c
  63.         cbounce flashywinopenclose
  64.  
  65. * ptsplay.asm
  66.         abounce ptfilter
  67.  
  68.         end
  69.